Convert string to bytes

To convert a string to a UTF8 byte array (a blob), do this:

orgdata.StringToBase64.Base64ToBlob

Here is an example of how to calculate a complex token for Svea-pay:

-- as defined in https://checkoutapistage.svea.com/docs/#/getting-started
let orgdata=requestbody+SveaSettingsSingleton.oclSingleton.MerchantSecret+timestamp in
(
  let thehash=SysSingleton.oclSingleton.SHA512ComputeHash(orgdata.StringToBase64.Base64ToBlob) in
  (
    (SveaSettingsSingleton.oclSingleton.MerchantId+':'+SysSingleton.oclSingleton.BitConverterToString( thehash ).Replace('-','')).StringToBase64
  )
)
This page was edited 77 days ago on 02/10/2024. What links here